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
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 ];
};
}