your_spotify: 1.11.0 -> 1.12.0 (#366529)
[NixPkgs.git] / pkgs / development / python-modules / pykira / default.nix
bloba23d3b695f6e820432d163871b52dac558a364ed
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6 }:
8 buildPythonPackage rec {
9   pname = "pykira";
10   version = "0.1.3";
11   format = "setuptools";
13   disabled = pythonOlder "3.7";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-MMjmA5N9Ms40eJP9fDDq+LIoPduAnqVrbNLXm+Vl5qw=";
18   };
20   # Project has no tests
21   doCheck = false;
23   pythonImportsCheck = [ "pykira" ];
25   meta = with lib; {
26     description = "Python module to interact with Kira modules";
27     homepage = "https://github.com/stu-gott/pykira";
28     license = with licenses; [ mit ];
29     maintainers = with maintainers; [ fab ];
30   };