f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
23 lines
590 B
Nix
23 lines
590 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, oslosphinx, pbr, six, argparse }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "stevedore";
|
|
version = "1.21.0";
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "12sg88ax0lv2sxr685rqdaxm9gryjrpj4fvax459zvwy1r4n83ma";
|
|
};
|
|
|
|
doCheck = false;
|
|
|
|
buildInputs = [ oslosphinx ];
|
|
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;
|
|
};
|
|
}
|