mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
41 lines
889 B
Nix
41 lines
889 B
Nix
{ lib, buildPythonPackage, fetchPypi, debtcollector, oslotest, stestr, pbr }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "oslo.context";
|
|
version = "3.4.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "970f96361c5de9a5dc86d48a648289d77118180ca13ba5eeb307137736ffa953";
|
|
};
|
|
|
|
postPatch = ''
|
|
# only a small portion of the listed packages are actually needed for running the tests
|
|
# so instead of removing them one by one remove everything
|
|
rm test-requirements.txt
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
debtcollector
|
|
pbr
|
|
];
|
|
|
|
checkInputs = [
|
|
oslotest
|
|
stestr
|
|
];
|
|
|
|
checkPhase = ''
|
|
stestr run
|
|
'';
|
|
|
|
pythonImportsCheck = [ "oslo_context" ];
|
|
|
|
meta = with lib; {
|
|
description = "Oslo Context library";
|
|
homepage = "https://github.com/openstack/oslo.context";
|
|
license = licenses.asl20;
|
|
maintainers = teams.openstack.members;
|
|
};
|
|
}
|