mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
PyZufall: init at 0.13.2
This commit is contained in:
parent
77670c04c7
commit
45588a7a7c
2 changed files with 32 additions and 0 deletions
30
pkgs/development/python-modules/pyzufall/default.nix
Normal file
30
pkgs/development/python-modules/pyzufall/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ stdenv, fetchurl, python, buildPythonPackage, nose, future, coverage }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "PyZufall";
|
||||
version = "0.13.2";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://pypi/${builtins.substring 0 1 pname}/${pname}/${name}.tar.gz";
|
||||
sha256 = "1jffhi20m82fdf78bjhncbdxkfzcskrlipxlrqq9741xdvrn14b5";
|
||||
};
|
||||
|
||||
# disable tests due to problem with nose
|
||||
# https://github.com/nose-devs/nose/issues/1037
|
||||
doCheck = false;
|
||||
|
||||
buildInputs = [ nose coverage ];
|
||||
propagatedBuildInputs = [ future ];
|
||||
|
||||
checkPhase = ''
|
||||
${python.interpreter} setup.py nosetests
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://pyzufall.readthedocs.io/de/latest/";
|
||||
description = "Library for generating random data and sentences in german language";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ davidak ];
|
||||
};
|
||||
}
|
|
@ -360,6 +360,8 @@ in {
|
|||
|
||||
relatorio = callPackage ../development/python-modules/relatorio { };
|
||||
|
||||
pyzufall = callPackage ../development/python-modules/pyzufall { };
|
||||
|
||||
rhpl = if !isPy3k then callPackage ../development/python-modules/rhpl {} else throw "rhpl not supported for interpreter ${python.executable}";
|
||||
|
||||
sip = callPackage ../development/python-modules/sip { };
|
||||
|
|
Loading…
Reference in a new issue