1{ stdenv, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "check-manifest";
5 version = "0.37";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "44e3cf4b0833a55460046bf7a3600eaadbcae5e9d13baf0c9d9789dd5c2c6452";
10 };
11
12 doCheck = false;
13
14 meta = with stdenv.lib; {
15 homepage = https://github.com/mgedmin/check-manifest;
16 description = "Check MANIFEST.in in a Python source package for completeness";
17 license = licenses.mit;
18 maintainers = with maintainers; [ lewo ];
19 };
20}