about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/labmath/default.nix
blob: 24018fd7420ec5edccb991695e3a62ce554659ea (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
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "labmath";
  version = "1.2.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-/fZ61tJ6PVZsubr3OXlbg/VxyyKimz36uPV+r33kgD0=";
  };

  postPatch = ''
    substituteInPlace setup.py --replace "labmath/DESCRIPTION.rst" "PKG-INFO"
  '';

  pythonImportsCheck = [ "labmath" ];

  meta = with lib; {
    homepage = "https://pypi.org/project/labmath";
    description = "Module for basic math in the general vicinity of computational number theory";
    license = licenses.mit;
    maintainers = with maintainers; [ siraben ];
  };
}