pythonPackages.funcy: refactor move to python-modules
This commit is contained in:
parent
a576b19efb
commit
00eb722bf7
24
pkgs/development/python-modules/funcy/default.nix
Normal file
24
pkgs/development/python-modules/funcy/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "funcy";
|
||||||
|
version = "1.6";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "511495db0c5660af18d3151b008c6ce698ae7fbf60887278e79675e35eed1f01";
|
||||||
|
};
|
||||||
|
|
||||||
|
# No tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Collection of fancy functional tools focused on practicality";
|
||||||
|
homepage = "http://funcy.readthedocs.org/";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -4357,24 +4357,7 @@ in {
|
|||||||
|
|
||||||
uncertainties = callPackage ../development/python-modules/uncertainties { };
|
uncertainties = callPackage ../development/python-modules/uncertainties { };
|
||||||
|
|
||||||
funcy = buildPythonPackage rec {
|
funcy = callPackage ../development/python-modules/funcy { };
|
||||||
name = "funcy-1.6";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/f/funcy/${name}.tar.gz";
|
|
||||||
sha256 = "511495db0c5660af18d3151b008c6ce698ae7fbf60887278e79675e35eed1f01";
|
|
||||||
};
|
|
||||||
|
|
||||||
# No tests
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Collection of fancy functional tools focused on practicality";
|
|
||||||
homepage = "http://funcy.readthedocs.org/";
|
|
||||||
license = licenses.bsd3;
|
|
||||||
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
vxi11 = callPackage ../development/python-modules/vxi11 { };
|
vxi11 = callPackage ../development/python-modules/vxi11 { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user