1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 version = "2.0.0";
8 pname = "roman";
9
10 src = fetchPypi {
11 inherit pname version;
12 extension = "zip";
13 sha256 = "90e83b512b44dd7fc83d67eb45aa5eb707df623e6fc6e66e7f273abd4b2613ae";
14 };
15
16 meta = with lib; {
17 description = "Integer to Roman numerals converter";
18 homepage = "https://pypi.python.org/pypi/roman";
19 license = licenses.psfl;
20 };
21
22}