summary refs log tree commit diff
path: root/pkgs/development/python-modules/measurement/default.nix
blob: b342086d655619b83b60b832d9b2ebafc64e8e3d (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 = "2.0.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "36ca385ffdccf140a75a7e1d816a4df97a6dd255f16fd2f53dd7ab43632a8835";
  };

  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 ];
  };
}