pythonPackages.stevedore: 1.30.1 -> 1.31.0
This commit is contained in:
parent
475e88a6fb
commit
432ba5105b
1 changed files with 4 additions and 4 deletions
|
@ -1,17 +1,17 @@
|
||||||
{ stdenv, buildPythonPackage, fetchPypi, pbr, six }:
|
{ stdenv, buildPythonPackage, fetchPypi, pbr, setuptools, six }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "stevedore";
|
pname = "stevedore";
|
||||||
version = "1.30.1";
|
version = "1.31.0";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "1860zslirsqskc2iifljxcyly28zqgjpmkm7k3bj6zyqagzriq3v";
|
sha256 = "054apq55yg7058pmbnyc8jhrcpi9clmi0sm7znhwg0d676brywz0";
|
||||||
};
|
};
|
||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
propagatedBuildInputs = [ pbr six ];
|
propagatedBuildInputs = [ pbr setuptools six ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Manage dynamic plugins for Python applications";
|
description = "Manage dynamic plugins for Python applications";
|
||||||
|
|
Loading…
Reference in a new issue