python312Packages.flask-allowed-hosts: 1.1.2 -> 1.2.0 (#361132)
[NixPkgs.git] / pkgs / development / python-modules / morphys / default.nix
blob4ce36203a700ff0b1b45d77fc089f82edb31c8ae
2   buildPythonPackage,
3   fetchFromGitHub,
4   lib,
5 }:
6 buildPythonPackage rec {
7   pname = "morphys";
8   version = "1.0";
9   format = "setuptools";
11   src = fetchFromGitHub {
12     owner = "mkalinski";
13     repo = "morphys";
14     rev = "0642a71126c32cd26b3a443a5cac27e4e1f7240f";
15     sha256 = "1da8s04m5wwih9cvkrks3ymb8v082lia47f274hxmfhi6ma3qc8b";
16   };
18   pythonImportsCheck = [ "morphys" ];
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   };