mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
Merge pull request #24765 from nlewo/pr/pbr
pythonPackages.pbr: 1.8.1 -> 2.0.0
This commit is contained in:
commit
7a298266a2
21
pkgs/development/python-modules/pbr/default.nix
Normal file
21
pkgs/development/python-modules/pbr/default.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pbr";
|
||||||
|
version = "2.0.0";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0ccd2db529afd070df815b1521f01401d43de03941170f8a800e7531faba265d";
|
||||||
|
};
|
||||||
|
|
||||||
|
# circular dependencies with fixtures
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = "http://docs.openstack.org/developer/pbr/";
|
||||||
|
license = stdenv.lib.licenses.asl20;
|
||||||
|
description = "Python Build Reasonableness";
|
||||||
|
};
|
||||||
|
}
|
@ -18359,26 +18359,7 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
pbr = buildPythonPackage rec {
|
pbr = callPackage ../development/python-modules/pbr { };
|
||||||
name = "pbr-${version}";
|
|
||||||
version = "1.8.1";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/p/pbr/${name}.tar.gz";
|
|
||||||
sha256 = "0jcny36cf3s8ar5r4a575npz080hndnrfs4np1fqhv0ym4k7c4p2";
|
|
||||||
};
|
|
||||||
|
|
||||||
# circular dependencies with fixtures
|
|
||||||
doCheck = false;
|
|
||||||
#buildInputs = with self; [ testtools testscenarios testresources
|
|
||||||
# testrepository fixtures ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Python Build Reasonableness";
|
|
||||||
homepage = "http://docs.openstack.org/developer/pbr/";
|
|
||||||
license = licenses.asl20;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
fixtures = buildPythonPackage rec {
|
fixtures = buildPythonPackage rec {
|
||||||
name = "fixtures-1.4.0";
|
name = "fixtures-1.4.0";
|
||||||
|
Loading…
Reference in New Issue
Block a user