Skip to content

Commit

Permalink
pythonPackages.escapism: init at 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bzizou authored and FRidh committed Dec 6, 2016
1 parent 6344039 commit fc9e65c
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion pkgs/top-level/python-packages.nix
Expand Up @@ -6434,7 +6434,6 @@ in {
};
};


ds4drv = buildPythonPackage rec {
name = "ds4drv-${version}";
version = "0.5.0";
Expand Down Expand Up @@ -6585,6 +6584,26 @@ in {
propagatedBuildInputs = with self; [ configparser ];
};

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

etcd = buildPythonPackage rec {
name = "etcd-${version}";
version = "2.0.8";
Expand Down

0 comments on commit fc9e65c

Please sign in to comment.