pythonPackages.purepng: refactor move to python-modules
This commit is contained in:
parent
4027b73d37
commit
d1a868f1fa
2 changed files with 22 additions and 15 deletions
21
pkgs/development/python-modules/purepng/default.nix
Normal file
21
pkgs/development/python-modules/purepng/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "purepng";
|
||||
version = "0.2.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1kcl7a6d7d59360fbz2jwfk6ha6pmqgn396962p4s62j893d2r0d";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Pure Python library for PNG image encoding/decoding";
|
||||
homepage = https://github.com/scondo/purepng;
|
||||
license = licenses.mit;
|
||||
};
|
||||
|
||||
}
|
|
@ -3461,21 +3461,7 @@ in {
|
|||
|
||||
pyplatec = callPackage ../development/python-modules/pyplatec { };
|
||||
|
||||
purepng = buildPythonPackage rec {
|
||||
name = "purepng-${version}";
|
||||
version = "0.2.0";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/p/purepng/${name}.tar.gz";
|
||||
sha256 = "1kcl7a6d7d59360fbz2jwfk6ha6pmqgn396962p4s62j893d2r0d";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Pure Python library for PNG image encoding/decoding";
|
||||
homepage = https://github.com/scondo/purepng;
|
||||
license = licenses.mit;
|
||||
};
|
||||
};
|
||||
purepng = callPackage ../development/python-modules/purepng { };
|
||||
|
||||
pymaging = buildPythonPackage rec {
|
||||
name = "pymaging-unstable-2016-11-16";
|
||||
|
|
Loading…
Reference in a new issue