mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-21 08:01:31 +00:00
python3Packages.editables: init at 0.2
This commit is contained in:
committed by
Frederik Rietdijk
parent
fb7a4364ee
commit
1c58629142
28
pkgs/development/python-modules/editables/default.nix
Normal file
28
pkgs/development/python-modules/editables/default.nix
Normal file
@@ -0,0 +1,28 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "editables";
|
||||
version = "0.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "6918f16225258f24ef9800c2327e14eded42ddac344e77982380749464024f35";
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
# Tests not included in archive.
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Editable installations";
|
||||
homepage = https://github.com/pfmoore/editables;
|
||||
license = lib.licenses.mit;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user