mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-24 01:21:11 +00:00
python3Package.git-sweep: migrate to pyproject (#544354)
This commit is contained in:
@@ -3,19 +3,22 @@
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
gitpython,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "git-sweep";
|
||||
version = "0.1.1";
|
||||
format = "setuptools";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
inherit (finalAttrs) pname version;
|
||||
hash = "sha256-zSnxw3JHsFru9fOZSJZX+XOu144uJ0DaIKYlAtoHV7M=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ gitpython ];
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [ gitpython ];
|
||||
|
||||
# Module has no tests
|
||||
doCheck = false;
|
||||
@@ -29,4 +32,4 @@ buildPythonPackage rec {
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ pSub ];
|
||||
};
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user