pythonPackages.check-manifest: Move to own file
This commit is contained in:
committed by
Frederik Rietdijk
parent
160d69a831
commit
4c6bf74628
20
pkgs/development/python-modules/check-manifest/default.nix
Normal file
20
pkgs/development/python-modules/check-manifest/default.nix
Normal file
@@ -0,0 +1,20 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "check-manifest";
|
||||
version = "0.30";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0005vp3r7wh87pf41cr4rw015lbnzn228a607nx34r98p7cd17xi";
|
||||
};
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/mgedmin/check-manifest;
|
||||
description = "Check MANIFEST.in in a Python source package for completeness";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ lewo ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user