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