1{
2 buildPythonPackage,
3 fetchFromGitHub,
4 lib,
5}:
6buildPythonPackage {
7 pname = "morphys";
8 version = "1.0";
9 format = "setuptools";
10
11 src = fetchFromGitHub {
12 owner = "mkalinski";
13 repo = "morphys";
14 rev = "0642a71126c32cd26b3a443a5cac27e4e1f7240f";
15 sha256 = "1da8s04m5wwih9cvkrks3ymb8v082lia47f274hxmfhi6ma3qc8b";
16 };
17
18 pythonImportsCheck = [ "morphys" ];
19
20 meta = with lib; {
21 description = "Smart conversions between unicode and bytes types";
22 homepage = "https://github.com/mkalinski/morphys";
23 license = licenses.mit;
24 maintainers = with maintainers; [ rakesh4g ];
25 };
26}