pythonPackages.importmagic: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-29 15:02:22 -04:00
parent f5ac53a2b5
commit a80b2e3543
2 changed files with 27 additions and 19 deletions

View File

@@ -0,0 +1,26 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, six
}:
buildPythonPackage rec {
pname = "importmagic";
version = "0.1.3";
src = fetchPypi {
inherit pname version;
sha256 = "194bl8l8sc2ibwi6g5kz6xydkbngdqpaj6r2gcsaw1fc73iswwrj";
};
propagatedBuildInputs = [ six ];
doCheck = false; # missing json file from tarball
meta = with stdenv.lib; {
description = "Python Import Magic - automagically add, remove and manage imports";
homepage = https://github.com/alecthomas/importmagic;
license = licenses.bsd0;
};
}