Merge pull request #48165 from costrouc/costrouc/python-escapism-1.0.0

pythonPackages.escapism: 0.0.1 -> 1.0.0 move to python-modules
This commit is contained in:
Jörg Thalheim 2018-10-11 17:11:38 +01:00 committed by GitHub
commit af35bf90ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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}";