python-stdnum: init at 1.5
This commit is contained in:
parent
402a6c6dde
commit
96e1fd6a5a
18
pkgs/development/python-modules/python-stdnum/default.nix
Normal file
18
pkgs/development/python-modules/python-stdnum/default.nix
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{ lib, fetchurl, buildPythonPackage, isPy3k }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
name = "python-stdnum-${version}";
|
||||||
|
version = "1.5";
|
||||||
|
# Failing tests and dependency issue on Py3k
|
||||||
|
disabled = isPy3k;
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://pypi/p/python-stdnum/${name}.tar.gz";
|
||||||
|
sha256 = "0zkkpjy4gc161dkyxjmingjw48glljlqqrl4fh2k5idf0frkvzhh";
|
||||||
|
};
|
||||||
|
meta = {
|
||||||
|
homepage = "http://arthurdejong.org/python-stdnum/";
|
||||||
|
description = "Python module to handle standardized numbers and codes";
|
||||||
|
maintainers = with lib.maintainers; [ johbo ];
|
||||||
|
license = lib.licenses.lgpl2Plus;
|
||||||
|
};
|
||||||
|
}
|
@ -334,6 +334,8 @@ in {
|
|||||||
|
|
||||||
python-sql = callPackage ../development/python-modules/python-sql { };
|
python-sql = callPackage ../development/python-modules/python-sql { };
|
||||||
|
|
||||||
|
python-stdnum = callPackage ../development/python-modules/python-stdnum { };
|
||||||
|
|
||||||
pytimeparse = buildPythonPackage rec {
|
pytimeparse = buildPythonPackage rec {
|
||||||
pname = "pytimeparse";
|
pname = "pytimeparse";
|
||||||
version = "1.1.6";
|
version = "1.1.6";
|
||||||
|
Loading…
Reference in New Issue
Block a user