9 buildPythonPackage rec {
10 pname = "awesomeversion";
12 disabled = pythonOlder "3.8";
14 src = fetchFromGitHub {
18 sha256 = "sha256-ulByke1sKVcDdBhAz/fxdNFJ0PSjYVdnBcO+GYEnZUQ=";
22 substituteInPlace setup.py --replace "main" ${version}
25 propagatedBuildInputs = [ requests ];
31 pythonImportsCheck = [ "awesomeversion" ];
34 description = "Python module to deal with versions";
35 homepage = "https://github.com/ludeeus/awesomeversion";
36 license = with licenses; [ mit ];
37 maintainers = with maintainers; [ fab ];