nixpkgs/pkgs/development/python-modules/stevedore/default.nix
R. RyanTM 84a4c52529 python36Packages.stevedore: 1.29.0 -> 1.30.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.6-stevedore/versions
2018-11-08 17:13:53 -08:00

22 lines
514 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, pbr, six, argparse }:
buildPythonPackage rec {
pname = "stevedore";
version = "1.30.0";
src = fetchPypi {
inherit pname version;
sha256 = "0161pwgv6514ks6lky8642phlcqks5w8j5sacdnbfgx5s6nwfaxr";
};
doCheck = false;
propagatedBuildInputs = [ pbr six argparse ];
meta = with stdenv.lib; {
description = "Manage dynamic plugins for Python applications";
homepage = https://pypi.python.org/pypi/stevedore;
license = licenses.asl20;
};
}