desktop is building I guess, idk, need to start commiting stuff eventually lmao
This commit is contained in:
17
packages/magicattr/default.nix
Normal file
17
packages/magicattr/default.nix
Normal file
@@ -0,0 +1,17 @@
|
||||
{ lib, python3Packages, fetchFromGitHub, ... }:
|
||||
|
||||
python3Packages.buildPythonPackage rec {
|
||||
pname = "magicattr";
|
||||
version = "0.1.6";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "frmdstryr";
|
||||
repo = pname;
|
||||
rev = "master";
|
||||
sha256 = "sha256-FJtWU5AuunZbdlndGdfD1c9/0s7oRdoTi202pWjuAd8=";
|
||||
};
|
||||
|
||||
buildInputs = with python3Packages; [ setuptools ];
|
||||
doCheck = false;
|
||||
}
|
||||
Reference in New Issue
Block a user