Merge pull request #37391 from lsix/svg-path-2.2

pythonPackages.svg-path: 2.0b1 -> 2.2
This commit is contained in:
Robert Schütz 2018-03-19 23:28:51 +01:00 committed by GitHub
commit 4686259904
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 16 deletions

View File

@ -0,0 +1,17 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "svg.path";
version = "2.2";
src = fetchPypi {
inherit pname version;
sha256 = "08kp03i4yiqdkz7a7l7d7kzszahmhigrml2502zi1ybndrh7ayxw";
};
meta = with stdenv.lib; {
description = "SVG path objects and parser";
homepage = https://github.com/regebro/svg.path;
license = licenses.mit;
maintainers = with maintainers; [ goibhniu ];
};
}

View File

@ -6348,22 +6348,7 @@ in {
};
svg-path = buildPythonPackage rec {
name = "svg.path-${version}";
version = "2.0b1";
src = pkgs.fetchurl {
url = "mirror://pypi/s/svg.path/${name}.zip";
sha256 = "038x4wqkbvcs71x6n6kzr4kn99csyv8v4gqzssr8pqylqpxi56bm";
};
meta = {
description = "SVG path objects and parser";
homepage = https://github.com/regebro/svg.path;
license = licenses.cc0;
maintainers = with maintainers; [ goibhniu ];
};
};
svg-path = callPackage ../development/python-modules/svg-path { };
regex = callPackage ../development/python-modules/regex { };