pythonPackages.devpi-common: 3.0.1 -> 3.2.0rc1
This commit is contained in:
parent
8021c8f220
commit
585a617119
26
pkgs/development/python-modules/devpi-common/default.nix
Normal file
26
pkgs/development/python-modules/devpi-common/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ pythonPackages }:
|
||||||
|
|
||||||
|
with pythonPackages;buildPythonPackage rec {
|
||||||
|
pname = "devpi-common";
|
||||||
|
version = "3.2.0rc1";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1ws35g1r0j2xccsna4r6fc9a08przfi28kf9hciq3rmd6ndbr9c9";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ requests py ];
|
||||||
|
checkInputs = [ pytest ];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
py.test
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = https://github.com/devpi/devpi;
|
||||||
|
description = "Utilities jointly used by devpi-server and devpi-client";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ lewo makefu ];
|
||||||
|
};
|
||||||
|
}
|
@ -2355,25 +2355,7 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
devpi-common = buildPythonPackage rec {
|
devpi-common = callPackage ../development/python-modules/devpi-common { };
|
||||||
name = "devpi-common";
|
|
||||||
version = "3.0.1";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/d/devpi-common/devpi-common-${version}.tar.gz";
|
|
||||||
sha256 = "0l3a7iyk596x6pvzg7604lzzi012qszr804fqn6f517zcy1xz23j";
|
|
||||||
};
|
|
||||||
|
|
||||||
propagatedBuildInputs = [ self.requests self.py ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
homepage = https://bitbucket.org/hpk42/devpi;
|
|
||||||
description = "Utilities jointly used by devpi-server and devpi-client";
|
|
||||||
license = licenses.mit;
|
|
||||||
maintainers = with maintainers; [ lewo makefu ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
# A patched version of buildout, useful for buildout based development on Nix
|
# A patched version of buildout, useful for buildout based development on Nix
|
||||||
zc_buildout_nix = callPackage ../development/python-modules/buildout-nix { };
|
zc_buildout_nix = callPackage ../development/python-modules/buildout-nix { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user