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
No known key found for this signature in database
GPG Key ID: 9ED59B0AB1EAF573
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;
};
}

View File

@ -4479,25 +4479,7 @@ in {
willow = callPackage ../development/python-modules/willow { };
importmagic = buildPythonPackage rec {
simpleName = "importmagic";
name = "${simpleName}-${version}";
version = "0.1.3";
doCheck = false; # missing json file from tarball
src = pkgs.fetchurl {
url = "mirror://pypi/i/${simpleName}/${name}.tar.gz";
sha256 = "194bl8l8sc2ibwi6g5kz6xydkbngdqpaj6r2gcsaw1fc73iswwrj";
};
propagatedBuildInputs = with self; [ six ];
meta = {
description = "Python Import Magic - automagically add, remove and manage imports";
homepage = https://github.com/alecthomas/importmagic;
license = "bsd";
};
};
importmagic = callPackage ../development/python-modules/importmagic { };
xgboost = callPackage ../development/python-modules/xgboost {
xgboost = pkgs.xgboost;