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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "0d8e1b0944a667dd4a75274f6763e558f0d268fde2c725e894dfd152aae23300";
  };

  propagatedBuildInputs = [ toml ];

  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 ];
    broken = true; # pep517 package doesn't exist in nixpkgs
  };
}