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

buildPythonPackage rec {
  version = "2.0.0";
  pname = "roman";

  src = fetchPypi {
    inherit pname version;
    extension = "zip";
    sha256 = "90e83b512b44dd7fc83d67eb45aa5eb707df623e6fc6e66e7f273abd4b2613ae";
  };

  meta = with lib; {
    description = "Integer to Roman numerals converter";
    homepage = "https://pypi.python.org/pypi/roman";
    license = licenses.psfl;
  };

}