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

buildPythonPackage rec {
  pname = "units";
  version = "0.07";

  src = fetchPypi {
    inherit pname version;
    sha256 = "43eb3e073e1b11289df7b1c3f184b5b917ccad178b717b03933298716f200e14";
  };

  meta = with lib; {
    description = "Python support for quantities with units";
    homepage = https://bitbucket.org/adonohue/units/;
    license = licenses.psfl;
    maintainers = [ maintainers.costrouc ];
  };
}