mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
pythonPackages.zope_deprecation: refactor move to python-modules
This commit is contained in:
parent
b37a318d41
commit
5c440b5aae
25
pkgs/development/python-modules/zope_deprecation/default.nix
Normal file
25
pkgs/development/python-modules/zope_deprecation/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, zope_testing
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "zope.deprecation";
|
||||
version = "4.1.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "fed622b51ffc600c13cc5a5b6916b8514c115f34f7ea2730409f30c061eb0b78";
|
||||
};
|
||||
|
||||
buildInputs = [ zope_testing ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://github.com/zopefoundation/zope.deprecation;
|
||||
description = "Zope Deprecation Infrastructure";
|
||||
license = licenses.zpl20;
|
||||
maintainers = with maintainers; [ garbas domenkozar ];
|
||||
};
|
||||
|
||||
}
|
@ -2199,21 +2199,7 @@ in {
|
||||
|
||||
pywavelets = callPackage ../development/python-modules/pywavelets { };
|
||||
|
||||
zope_deprecation = buildPythonPackage rec {
|
||||
name = "zope.deprecation-4.1.2";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/z/zope.deprecation/${name}.tar.gz";
|
||||
sha256 = "fed622b51ffc600c13cc5a5b6916b8514c115f34f7ea2730409f30c061eb0b78";
|
||||
};
|
||||
|
||||
buildInputs = with self; [ zope_testing ];
|
||||
|
||||
meta = {
|
||||
maintainers = with maintainers; [ garbas domenkozar ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
};
|
||||
zope_deprecation = callPackage ../development/python-modules/zope_deprecation { };
|
||||
|
||||
validictory = buildPythonPackage rec {
|
||||
name = "validictory-1.0.0a2";
|
||||
|
Loading…
Reference in New Issue
Block a user