summary refs log tree commit diff
path: root/pkgs/development/python-modules/cdecimal/default.nix
blob: 3508b392203d414327303d3145e0b305ca230812 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchurl, buildPythonPackage, isPy3k }:

with stdenv.lib;

buildPythonPackage rec {
  pname = "cdecimal";
  version = "2.3";

  disabled = isPy3k;

  src = fetchurl {
    url="http://www.bytereef.org/software/mpdecimal/releases/${pname}-${version}.tar.gz";
    sha256 = "d737cbe43ed1f6ad9874fb86c3db1e9bbe20c0c750868fde5be3f379ade83d8b";
  };

  # Upstream tests are not included s. a. http://www.bytereef.org/mpdecimal/testing.html
  doCheck = false;

  meta = with stdenv.lib; {
    description = "Fast drop-in replacement for decimal.py";
    homepage    = "http://www.bytereef.org/mpdecimal/";
    license     = licenses.bsd2;
    maintainers = [ maintainers.udono ];
  };
}