Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / pencompy / default.nix
blobb2648e36e5a1278dac0bd8f505e9a5b03546c64c
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 }:
7 buildPythonPackage rec {
8   pname = "pencompy";
9   version = "0.0.4";
10   format = "setuptools";
12   disabled = pythonOlder "3.7";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-PjALTsk0Msv3g8M6k0v6ftzDAuFKyIPSpfvT8S3YL48=";
17   };
19   # Module has no tests
20   doCheck = false;
22   pythonImportsCheck = [
23     "pencompy"
24   ];
26   meta = with lib; {
27     description = "Library for interacting with Pencom relay boards";
28     homepage = "https://github.com/dubnom/pencompy";
29     license = with licenses; [ mit ];
30     maintainers = with maintainers; [ fab ];
31   };