summary refs log tree commit diff
path: root/pkgs/development/python-modules/check-manifest/default.nix
blob: 56c6c551ee7c9eb610328a46d78e882d99ee9a3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "check-manifest";
  version = "0.36";

  src = fetchPypi {
    inherit pname version;
    sha256 = "2bb906a736a0f026cc5fd6c0dab5a481793b3d7a7d70106cca6e238da5f52d84";
  };

  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 ];
  };
}