mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
Add the simpleparse python package
This commit is contained in:
parent
96d6344b13
commit
a45acf1b29
1 changed files with 17 additions and 0 deletions
|
@ -9659,6 +9659,23 @@ let
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
simpleparse = buildPythonPackage rec {
|
||||||
|
version = "2.1.1";
|
||||||
|
name = "simpleparse-${version}";
|
||||||
|
|
||||||
|
src = pkgs.fetchurl {
|
||||||
|
url = "https://pypi.python.org/packages/source/S/SimpleParse/SimpleParse-${version}.tar.gz";
|
||||||
|
sha256 = "1n8msk71lpl3kv086xr2sv68ppgz6228575xfnbszc6p1mwr64rg";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A Parser Generator for Python";
|
||||||
|
homepage = https://pypi.python.org/pypi/SimpleParse;
|
||||||
|
platforms = platforms.all;
|
||||||
|
maintainers = [ maintainers.DamienCassou ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
sigal = buildPythonPackage rec {
|
sigal = buildPythonPackage rec {
|
||||||
name = "sigal-0.7.0";
|
name = "sigal-0.7.0";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue