summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-stdnum/default.nix
blob: fe85b7bb0d3475b8b3e9f30b88a86ac40107dd05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
  };
}