pythonPackages.escapism: 0.0.1 -> 1.0.0 move to python-modules

This commit is contained in:
Chris Ostrouchov 2018-10-10 13:10:47 -04:00
parent 29d0eec15f
commit 61c83b108d
No known key found for this signature in database
GPG Key ID: 9ED59B0AB1EAF573
2 changed files with 25 additions and 19 deletions

View File

@ -0,0 +1,24 @@
{ pkgs
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "escapism";
version = "1.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "5f1cc1fa04a95f5b85b3da194750f8a71846d493ea332f62e8798949f10c9b86";
};
# No tests distributed
doCheck = false;
meta = with pkgs.lib; {
description = "Simple, generic API for escaping strings";
homepage = "https://github.com/minrk/escapism";
license = licenses.mit;
maintainers = with maintainers; [ bzizou ];
};
}

View File

@ -2223,25 +2223,7 @@ in {
enzyme = callPackage ../development/python-modules/enzyme {};
escapism = buildPythonPackage rec {
name = "escapism-${version}";
version = "0.0.1";
src = pkgs.fetchurl {
url = "mirror://pypi/e/escapism/${name}.tar.gz";
sha256 = "1yfyxwxb864xrmrrqgp85xgsh4yrrq5mmzvkdg19jwr7rm6sqx9p";
};
# No tests distributed
doCheck = false;
meta = {
description = "Simple, generic API for escaping strings";
homepage = "https://github.com/minrk/escapism";
license = licenses.mit;
maintainers = with maintainers; [ bzizou ];
};
};
escapism = callPackage ../development/python-modules/escapism { };
etcd = buildPythonPackage rec {
name = "etcd-${version}";