Skip to content
Snippets Groups Projects

fix: Make releasable source package

Merged Victor Engmark requested to merge fix/make-releasable-source-package into master
1 file
+ 34
5
Compare changes
  • Side-by-side
  • Inline
+ 34
5
{pkgs}: let
pname = "vcard";
version = "0.15.0";
python = pkgs.callPackage ./python.nix {};
in
python.pkgs.buildPythonPackage {
pname = "vcard";
version = "0.15.0";
sdist = pkgs.stdenv.mkDerivation {
name = "${pname}-sdist";
src = builtins.path {
name = pname;
path = ./.;
name = "vcard";
};
nativeBuildInputs = [
python
python.pkgs.setuptools
];
buildPhase = ":";
installPhase = ''
python setup.py sdist --dist-dir="$out"
'';
strictDeps = true;
};
in
python.pkgs.buildPythonPackage {
inherit pname version;
src = "${sdist}/${pname}*";
propagatedBuildInputs = [
python.pkgs.python-dateutil
python.pkgs.typing-extensions
@@ -19,6 +40,12 @@ in
python.pkgs.mock
];
pythonImportsCheck = ["vcard"];
postCheck = ''
gunzip --test dist/${pname}-${version}.tar.gz
'';
meta = {
pkgs.lib.homepage = "https://gitlab.com/victor-engmark/vcard";
pkgs.lib.downloadPage = "https://pypi.org/project/vcard/";
@@ -29,4 +56,6 @@ in
];
pkgs.lib.license = pkgs.lib.licenses.agpl3Plus;
};
passthru.sdist = sdist;
}
Loading