summary refs log tree commit diff
path: root/pkgs/development/python-modules/measurement/default.nix
blob: 260d62621026a3afb2483e2817a647a0015ba377 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, fetchPypi, buildPythonPackage, pbr, six, sympy }:

buildPythonPackage rec {
  pname = "measurement";
  version = "3.2.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "352b20f7f0e553236af7c5ed48d091a51cf26061c1a063f46b31706ff7c0d57a";
  };

  propagatedBuildInputs = [ pbr six sympy ];

  meta = with lib; {
    description = "Use and manipulate unit-aware measurement objects in Python";
    homepage = https://github.com/coddingtonbear/python-measurement;
    license = licenses.mit;
    maintainers = with maintainers; [ bhipple ];
  };
}