mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
python3.pkgs.flit-core: init at 2.3.0
This commit is contained in:
parent
b5160ada32
commit
4615bdaa9e
36
pkgs/development/python-modules/flit-core/default.nix
Normal file
36
pkgs/development/python-modules/flit-core/default.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, flit
|
||||
, isPy3k
|
||||
, pytoml
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "flit-core";
|
||||
version = "2.3.0";
|
||||
disabled = !isPy3k;
|
||||
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit version;
|
||||
pname = "flit_core";
|
||||
hash = "sha256:a50bcd8bf5785e3a7d95434244f30ba693e794c5204ac1ee908fc07c4acdbf80";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pytoml
|
||||
];
|
||||
|
||||
passthru.tests = {
|
||||
inherit flit;
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Distribution-building parts of Flit. See flit package for more information";
|
||||
homepage = "https://github.com/takluyver/flit";
|
||||
license = lib.licenses.bsd3;
|
||||
maintainers = [ lib.maintainers.fridh ];
|
||||
};
|
||||
}
|
@ -2811,6 +2811,8 @@ in {
|
||||
|
||||
flit = callPackage ../development/python-modules/flit { };
|
||||
|
||||
flit-core = callPackage ../development/python-modules/flit-core { };
|
||||
|
||||
flowlogs_reader = callPackage ../development/python-modules/flowlogs_reader { };
|
||||
|
||||
fluent-logger = callPackage ../development/python-modules/fluent-logger {};
|
||||
|
Loading…
Reference in New Issue
Block a user