pythonPackages.svg-path: 2.0b1 -> 2.2

This commit is contained in:
Lancelot SIX 2018-03-19 22:39:56 +01:00
parent 5675f17b0e
commit de63ff83a7
No known key found for this signature in database
GPG Key ID: 02E1542BA66FB047
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 { };