mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
2815c3a421
{sourcery,vscode-extensions.sourcery.sourcery}: 1.16.0 -> 1.19.0
50 lines
1.2 KiB
Nix
50 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
python3Packages,
|
|
fetchPypi,
|
|
autoPatchelfHook,
|
|
zlib,
|
|
}:
|
|
|
|
let
|
|
platformInfos = {
|
|
"x86_64-linux" = {
|
|
platform = "manylinux1_x86_64";
|
|
hash = "sha256-IJFuMtrddHciuHGeiCuv4hgco9E3GJveegL7dBmVmAw=";
|
|
};
|
|
"x86_64-darwin" = {
|
|
platform = "macosx_10_9_universal2";
|
|
hash = "sha256-eTD8NnmDTMSB0dt5skPOlWbnW6AexxEkKZ9ABc+kUas=";
|
|
};
|
|
};
|
|
platformInfo = platformInfos.${stdenv.system} or (throw "Unsupported platform ${stdenv.system}");
|
|
in
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "sourcery";
|
|
version = "1.19.0";
|
|
format = "wheel";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version format;
|
|
inherit (platformInfo) platform hash;
|
|
};
|
|
|
|
nativeBuildInputs = lib.optionals stdenv.isLinux [ autoPatchelfHook ];
|
|
|
|
buildInputs = [ zlib ];
|
|
|
|
meta = {
|
|
changelog = "https://sourcery.ai/changelog/";
|
|
description = "AI-powered code review and pair programming tool for Python";
|
|
downloadPage = "https://pypi.org/project/sourcery/";
|
|
homepage = "https://sourcery.ai";
|
|
license = lib.licenses.unfree;
|
|
mainProgram = "sourcery";
|
|
maintainers = with lib.maintainers; [ tomasajt ];
|
|
platforms = [
|
|
"x86_64-linux"
|
|
"x86_64-darwin"
|
|
];
|
|
};
|
|
}
|