nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 30 lines 617 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5}: 6 7buildPythonPackage rec { 8 pname = "pyflic"; 9 version = "2.0.4"; 10 format = "setuptools"; 11 12 src = fetchFromGitHub { 13 owner = "soldag"; 14 repo = "pyflic"; 15 rev = version; 16 sha256 = "sha256-K1trMBZfc1aHSNSddq0v//Gv8ySgT/ONQYgrKWzw2qs="; 17 }; 18 19 # Project thas no tests 20 doCheck = false; 21 22 pythonImportsCheck = [ "pyflic" ]; 23 24 meta = { 25 description = "Python module to interact with Flic buttons"; 26 homepage = "https://github.com/soldag/pyflic"; 27 license = with lib.licenses; [ cc0 ]; 28 maintainers = with lib.maintainers; [ fab ]; 29 }; 30}